
/* Importing Google Font Resources */
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Orbitron:wght@400..900&family=Oswald:wght@200..700&display=swap');

/* General Reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* General Text Adjustments */
body {
    font-family: "Orbitron", sans-serif;
    background-color: #05172c;
    color: #06c6d3;
    font-size: 18px; 
    margin: 0; 
    padding: 0; 
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.8); 
    color: #fff;
    border-bottom: 1px solid #40E0D0;
}

/* Sticky Header Styling */
.sticky-header {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    background-color: rgba(0, 0, 0, 0.8); 
    color: #fff; 
    border-bottom: 1px solid #40E0D0; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); 
    padding: 10px 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

/* Header Title */
.header-left h1 {
    font-size: 24px; 
    margin: 0; 
    color: #40E0D0; 
}

/* Menu Styling */
.menu {
    display: flex; 
    justify-content: flex-end; 
    align-items: center; 
    gap: 20px; 
}

.menu ul {
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: flex; 
    gap: 20px; 
}

.menu a {
    text-decoration: none; 
    color: #ffffff; 
    font-size: 16px; 
    transition: color 0.3s ease; 
}
.menu a:hover {
    color: #40E0D0; 
}

.menu a.selected {
    text-decoration: underline; 
    text-underline-offset: 4px; 
    color: #62ebdd; 
}

/* Burger Menu Styling */
.burger-menu {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001; 
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff; 
    border-radius: 2px;
    transition: all 0.3s ease; 
}

/* Hide the checkbox */
.burger-toggle {
    display: none;
}

/* Hidden Menu Styling */
.menu-list {
    display: flex; 
    flex-direction: row;
    gap: 20px;
}

.menu-list.hidden {
    display: none; 
    flex-direction: column; 
    position: absolute;
    top: 60px; 
    right: 20px; 
    background-color: rgba(0, 0, 0, 0.9); 
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}

/* Show Menu When Active */
.burger-toggle:checked ~ .menu-list {
    display: flex;
    flex-direction: column; 
    position: absolute;
    top: 60px; 
    right: 20px; 
    background-color: rgba(0, 0, 0, 0.9); 
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}

/* Hidden Menu Styling */
.menu ul.hidden {
    display: none; 
    flex-direction: column; 
    position: absolute;
    top: 60px; 
    right: 20px; 
    background-color: rgba(0, 0, 0, 0.9); 
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}

.menu ul.hidden li {
    margin: 10px 0; 
    text-align: center;
}

/* Show Menu When Active */
.menu ul.active {
    display: flex;
}

/* Navigation Bar Styling */
nav {
    display: flex;
    flex-direction: column;
}

nav a {
    text-decoration: none;
    color: #333;
    padding: 10px;
    transition: 0.3s;
}

nav a:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Hero Section Styling */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: 768px;
    background-image: url('../images/geo-of-squares.webp');
    background-repeat: repeat;
    background-size: 450px 450px;
    background-position: center;
    color: #fff;
    margin-bottom: 50px;
}

.hero-content {
    max-width: 50%;
}

/* Hero Section Text */
.hero-content h2 {
    font-size: 56px; 
    margin-bottom: 10px;
    background: linear-gradient(to right, #b75fd2, #5578c2, #85D8CE, #085078); /* Gradient for text */
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    
}

.hero-content h3 {
    font-size: 28px; 
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 18px; 
    margin-bottom: 20px;
    margin-top: 20px; 
}

/* Button Styling */
.discover-btn {
    padding: 15px 30px; 
    font-size: 18px; 
    margin-top: 20px; 
    margin-bottom: 0; 
    color: #fff; 
    /* Gradient background */
    background: linear-gradient(to right, #85D8CE, #085078); 
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none; 
    display: inline-block; 
}

/* Hero Image and Blue Line */
.hero-image {
    position: relative; 
    align-self: flex-end; 
}

.hero-image img {
    max-width: 472.5px; 
    max-height: 472.5px; 
    border-radius: 10px; 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); 
}

.hero-image::after {
    content: '';
    position: absolute;
    border: 1px solid #007BFF; 
    width: calc(100% + 15.75px); 
    height: calc(100% + 15.75px); 
    top: -7.875px; 
    left: -7.875px; 
    border-radius: 15px; 
    pointer-events: none; 
    box-sizing: border-box; 
}

/* Video Section Styling */
.video-section {
    padding: 70px 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #05172c; 
}

.video-container {
    position: relative;
    margin: 0 auto; 
    text-align: center; 
}

.video-box {
    position: relative;
    padding: 30px 170px; 
    border: 1px solid #40E0D0; 
    border-radius: 15px; 
    background-color: #222533; 
    margin: 0 auto; 
    min-height: 600px; 
}

.video-box h2 {
    font-size: 40px; 
    margin-bottom: 30px; 
    color: #007991; 
}

.video-player {
    width: 100%; 
    max-width: 760px; 
    height: auto; 
    border: 1px solid #800080; 
    border-radius: 10px; 
    margin-bottom: 20px; 
}

.video-description {
    margin-top: 20px; 
    max-width: 760px; 
    margin-left: auto; 
    margin-right: auto; 
}

.video-description p {
    font-size: 18px; 
    color: #ffffff; 
    line-height: 1.6; 
    text-align: center; 
}

/* Gallery Section Styling */
.gallery-section {
    padding: 70px 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #05172c; 
}

.gallery-box {
    position: relative;
    padding: 80px 140px; 
    border: 1px solid #800080; 
    border-radius: 15px; 
    background-color: #222533; 
    margin: 0 auto; 
    max-width: 1100px; 
    text-align: center; 
}

.gallery-box h2 {
    font-size: 40px; 
    margin-bottom: 20px; 
    color: #800080; 
}

.gallery-box p {
    font-size: 18px; 
    color: #ffffff; 
    margin-bottom: 20px; 
    line-height: 1.6; 
}

/* Gallery Container Styling */
.gallery-container {
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    position: relative; 
}

/* Gallery Item Styling */
.gallery-item {
    position: relative;
    width: 250px; 
    height: 250px; 
    overflow: hidden; 
    border: 1px solid #800080; 
    border-radius: 10px; 
    background-color: #222533; 
}

.gallery-item img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

/* Hidden Image Styling */
.hidden-image img {
    opacity: 0; 
    transition: opacity 0.3s ease; 
}

.hidden-image:hover img {
    opacity: 1; 
}

/* General Paragraph Styling for Boxes */
.gallery-box p,
.video-box .video-description p,
.features-box p,
.contact-box .contact-paragraph {
    font-family: "Kumbh Sans", sans-serif; 
    max-width: 800px; 
    margin: auto; 
    margin-top: 20px; 
    text-align: center; 
    line-height: 1.6; 
    font-size: 18px; 
    color: #ffffff; 
}

/* Features Section Styling */
.features-section {
    padding: 70px 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #05172c; 
}

.features-box {
    position: relative;
    padding: 30px; 
    border: 1px solid #40E0D0; 
    border-radius: 15px; 
    background-color: #222533; 
    margin: 0 auto; 
    max-width: 1100px; 
    text-align: center; 
}

.features-box h2 {
    font-size: 40px; 
    margin-bottom: 5px; 
    margin-top: 5px;   
    color: #40E0D0; 
}

/* Table Styling */
.features-table {
    width: 100%; 
    border-collapse: collapse; 
    margin: 20px 0; 
    color: #ffffff; 
    text-align: center; 
}

.features-table {
    border: 1px solid #40E0D0; 
    border-collapse: collapse; 
}

.features-table th,
.features-table td {
    border-top: 1px solid #40E0D0; 
    padding: 15px; 
    font-size: 18px; 
}

.features-table th {
    background-color: #05172c; 
    color: #40E0D0; 
    font-weight: normal;
    font-size: 20px;
    text-align: left; 
    justify-content: flex-start; 
}

.features-table td {
    background-color: #05172c; 
}

.features-table td:nth-child(2),
.features-table td:nth-child(3) {
    font-family: "Kumbh Sans", sans-serif; 
    font-size: 18px; 
    color: #ffffff; 
    text-align: center; 
}

/* Third Column Styling */
.features-table tr:nth-child(1) td:nth-child(3) {
    color: red; 
}

.features-table tr:nth-child(2) td:nth-child(3) {
    color: green; 
}

.features-table tr:nth-child(3) td:nth-child(3) {
    color: blue; 
}

.features-table tr:nth-child(4) td:nth-child(3) {
    color: pink; 
}
.features-table .table-footer {
    font-style: italic; 
    background-color: #05172c; 
    color: #fff; 
    padding: 20px; 
}

/* Paragraph Styling */
.features-paragraph {
    font-family: "Kumbh Sans", sans-serif; 
    font-size: 18px; 
    color: #ffffff; 
    margin-top: 5px; 
    line-height: 1.6; 
    text-align: center; 
}

/* Contact Section Styling */
.contact-section {
    padding: 70px 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #05172c; 
}

/* Outer Contact Box */
.contact-box {
    position: relative;
    padding: 50px 150px; 
    border: 1px solid #800080; 
    border-radius: 15px; 
    background-color: #222533; 
    margin: 0 auto; 
    max-width: 1100px; 
    text-align: center; 
}

/* Contact Heading and Paragraph Styling */
.contact-box h2 {
    font-size: 40px; 
    color: #40E0D0; 
    margin-bottom: 20px; 
    margin-top: 0; 
    text-align: center; 
}

.contact-box .contact-paragraph {
    font-size: 18px; 
    color: #ffffff; 
    margin-bottom: 20px; 
    margin-top: 20px; 
    line-height: 1.6; 
    text-align: center; 
}

/* Inner Contact Box */
.inner-contact-box {
    position: relative;
    padding: 20px; 
    border: 1px solid #800080; 
    border-radius: 10px; 
    background-color: #2a2f3e; 
    margin: 0 auto; 
    max-width: 100%; 
    text-align: center; 
}

/* Form Styling */
.contact-form {
    max-width: 760px; 
    margin: 0 auto; 
    text-align: left; 
}

/* Form Group Styling */
.form-group {
    margin-bottom: 20px; 
}

.form-group label {
    display: block; 
    font-size: 18px; 
    color: #ffffff; 
    margin-bottom: 5px; 
    
}

.form-group input,
.form-group textarea {
    width: 100%; 
    padding: 10px; 
    font-size: 16px; 
    color: #ffffff; 
    background-color: #222533; 
    border: 1px solid #800080; 
    border-radius: 5px; 
    box-sizing: border-box; 
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cccccc; 
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none; 
    border-color: #a020f0; 
}

/* Button Styling */
.send-button {
    padding: 15px 30px; 
    font-size: 18px; 
    font-family: "Orbitron", sans-serif; 
    color: #ffffff; 
    background: linear-gradient(to right, #642b73, #c6426e); 
    border: 1px solid #a020f0; 
    border-radius: 5px; 
    cursor: pointer; 
    transition: box-shadow 0.3s ease, transform 0.3s ease; 
    width: 100%; 
    display: block; 
    margin: 20px auto; 
}

.send-button:hover {
    box-shadow: 0 0 15px 5px rgba(160, 32, 240, 0.8); 
    transform: scale(1.05); 
}

/* Paragraph Styling */
.contact-paragraph {
    font-size: 18px; 
    color: #ffffff; 
    margin-top: 30px; 
    line-height: 1.6; 
    text-align: center; 
}

/* Info Button Styling */
.info-btn {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.5em;
    transition: color 0.2s;
    color: #40E0D0;
}

.info-btn .fas.fa-info-circle {
    font-size: 1em;
    color: inherit;
    transition: color 0.2s;
    vertical-align: middle;
}

.info-btn:hover,
.info-btn:focus {
    color: #b75fd2;
    outline: none;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-left h1 {
    margin-right: 0.5em;
    display: inline-block;
}

/* Message Section Styling */
.message-section {
    padding: 70px 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #05172c; 
    min-height: 100vh; 
}

.message-box {
    position: relative;
    padding: 30px; 
    border: 1px solid #800080; 
    border-radius: 15px; 
    background-color: #222533; 
    text-align: center; 
    max-width: 600px; 
    margin: 0 auto; 
}

.message-box h2 {
    font-size: 40px; 
    color: #40E0D0; 
    margin-bottom: 20px; 
}

.message-paragraph {
    font-size: 18px; 
    color: #ffffff; 
    margin-bottom: 30px; 
    line-height: 1.6; 
}

.message-image {
    max-width: 100%; 
    height: auto; 
    margin-bottom: 30px; 
    border-radius: 10px; 
}

.return-button {
    display: inline-block;
    padding: 15px 30px; 
    font-size: 18px; 
    color: #ffffff; 
    background-color: #800080; 
    border: 1px solid #a020f0; 
    border-radius: 5px; 
    text-decoration: none; 
    cursor: pointer; 
    transition: background-color 0.3s ease, border-color 0.3s ease; 
}

.return-button:hover {
    background-color: #a020f0; 
    border-color: #ffffff; 
}

/* popup section styling */
.popup-section {
    padding: 70px 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent; 
    min-height: 100vh; 
}

.popup-box {
    position: relative;
    padding: 30px; 
    border: 1px solid #800080; 
    border-radius: 15px; 
    background-color: #222533; 
    text-align: center; 
    max-width: 600px; 
    margin: 0 auto; 
}

.popup-box h2 {
    font-size: 40px; 
    color: #40E0D0; 
    margin-bottom: 20px; 
}

.popup-paragraph {
    font-size: 18px; 
    color: #ffffff; 
    margin-bottom: 30px; 
    line-height: 1.6; 
}

.popup-image {
    max-width: 100%; 
    height: auto; 
    margin-bottom: 30px; 
    border-radius: 10px; 
}

.return-button {
    display: inline-block;
    padding: 15px 30px; 
    font-size: 18px; 
    color: #ffffff; 
    background-color: #800080; 
    border: 1px solid #a020f0; 
    border-radius: 5px; 
    text-decoration: none; 
    cursor: pointer; 
    transition: background-color 0.3s ease, border-color 0.3s ease; 
}

.return-button:hover {
    background-color: #a020f0; 
    border-color: #ffffff; 
}

/* Footer Section Styling */
.footer-section {
    background-color: #000000; 
    color: #ffffff; 
    padding: 40px 0; 
    text-align: center; 
    width: 100vw; 
    position: relative; 
    margin-top: 0; 
}

.footer-top-line {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 1px; 
    background-color: #40E0D0; 
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px; 
    margin: 0 auto; 
    padding-bottom: 20px; 
}

.footer-left h3 {
    font-size: 42px; 
    margin-bottom: 5px; 
    color: #40E0D0; 
    text-align: center; 
    width: 100%; 
}

.footer-left p {
    font-size: 16px; 
    color: #ffffff; 
}

.footer-right {
    display: flex;
    gap: 15px; 
}

.social-icon {
    color: #ffffff; 
    font-size: 20px; 
    text-decoration: none; 
    transition: color 0.3s ease; 
}

.social-icon:hover {
    color: #40E0D0; 
}

/* Divider Styling */
.footer-divider {
    margin: 20px 0; 
    position: relative;
    text-align: center; 
}

.footer-divider .line {
    height: 2px; 
    background: linear-gradient(to right, #800080, transparent, #800080); 
    position: relative; 
    z-index: 1; 
}

.footer-divider .dots {
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 20px; 
    position: relative; 
    top: -10px; 
    z-index: 2; 
}

.footer-divider .dot {
    width: 15px;
    height: 15px;
    border-radius: 50%; 
    background-color: #800080; 
}

.footer-divider .dot.turquoise {
    background-color: #40E0D0; 
}

/* Footer Bottom Styling */
.footer-bottom {
    margin-top: 20px; 
    font-size: 14px; 
    color: #ffffff; 
    line-height: 1.6; 
}

.footer-bottom a {
    color: #40E0D0; 
    text-decoration: none; 
}

.footer-bottom a:hover {
    text-decoration: underline; 
}

/* General Responsive Styling */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* For Tablets (768px and below) */
@media (max-width: 768px) {
    /* Header */
    .sticky-header {
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center;
        padding: 10px 20px;
    }

    .header-left h1 {
        font-size: 20px; 
        text-align: left; 
    }

    .menu ul {
        display: none; 
    }

    .menu ul.hidden {
        display: none; 
    }

    .burger-menu {
        display: flex; 
    }

    .menu ul {
        display: none; 
    }

    .menu ul.hidden {
        display: none; 
    }

    .menu ul.active {
        display: flex; 
    }

    .menu-list {
        display: none; 
    }

    .menu-list li {
        margin: 10px 0; 
        text-align: center;
    }

    /* Hero Section */
    .hero {
        height: auto; 
        padding: 20px;
        margin-top: 40px !important; 
    }

    .hero-content {
        max-width: 100%; 
        text-align: center;
    }

    .hero-content h2 {
        font-size: 36px; 
    }

    .hero-content h3 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-image img {
        max-width: 300px; 
        max-height: 300px;
    }

    /* Video Section */
    .video-container {
        padding: 10px;
    }

    .video-box {
        max-width: 100%;
    }

    .video-player {
        width: 100%; 
        height: auto;
    }

    /* Gallery Section */
    .gallery-container {
        flex-wrap: wrap; 
        gap: 10px; 
    }

    .gallery-item {
        width: 45%; 
        height: auto;
    }

    /* Features Section */
    .features-box {
        padding: 20px;
    }

    .features-table {
        font-size: 14px; 
    }

    .features-table th,
    .features-table td {
        padding: 10px;
    }

    /* Contact Section */
    .contact-box {
        padding: 20px;
    }

    .contact-form {
        max-width: 100%;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px; 
    }

    .send-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        margin-top: 10px;
    }

    .footer-divider .dots {
        gap: 10px; /* Reduce gap between dots */
    }

    /* General Box Heading and Paragraph Styling */
    .gallery-box h2,
    .video-box h2,
    .features-box h2,
    .contact-box h2,
    .message-box h2 {
        font-size: 28px; 
    }

    .gallery-box p,
    .video-box .video-description p,
    .features-box p,
    .contact-box .contact-paragraph,
    .message-paragraph {
        font-size: 16px; 
        line-height: 1.4; 
    }

    /* Reduce padding inside boxes */
    .gallery-box,
    .video-box,
    .features-box,
    .contact-box,
    .message-box {
        padding: 20px; 
    }

    /* Hidden Image Styling */
    .hidden-image img {
        opacity: 0; 
        transition: opacity 0.5s ease; 
    }

    .hidden-image:active img,
    .hidden-image:focus img {
        opacity: 1; 
    }
}

/* For Mobile Devices (480px and below) */
@media (max-width: 480px) {
    /* Header */
    .sticky-header {
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center; 
        padding: 10px 20px;
    }

    .header-left h1 {
        font-size: 18px; 
        text-align: left; 
        margin: 0; 
    }

    .burger-menu {
        display: flex; 
        flex-direction: column;
        justify-content: space-between;
        width: 20px; 
        height: 15px; 
        cursor: pointer;
        position: relative; 
    }

    .burger-menu span {
        display: block;
        height: 2px; 
        width: 100%; 
        background-color: #ffffff; 
        border-radius: 1px; 
        transition: all 0.3s ease; 
    }

    .menu ul {
        gap: 5px;
    }

    /* Hero Section */
    .hero-content h2 {
        font-size: 32px !important; 
    }

    .hero-content h3 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-image {
        align-self: center; 
        margin: 0 auto; 
        margin-top: 20px; 
        text-align: center; 
    }

    .hero-image img {
        max-width: 95%; 
        height: auto; 
        display: block; 
        margin: 0 auto; 
    }

    /* Gallery Section */
    .gallery-item {
        width: 100%; 
    }

    /* Features Section */
    .features-table {
        display: block; 
        border: none; 
    }

    .features-table thead {
        display: none; 
    }

    .features-table tbody {
        display: block; 
    }

    .features-table tr {
        display: grid; 
        grid-template-rows: auto auto auto; 
        border: 1px solid #40E0D0; 
        border-radius: 10px; 
        padding: 10px; 
        background-color: #222533; 
        margin-bottom: 10px; 
    }

    .features-table td {
        display: block; 
        padding: 10px; 
        text-align: left; 
        border-bottom: 1px solid #40E0D0; 
    }

    .features-table td:last-child {
        border-bottom: none; 
    }

    .features-table td::before {
        content: attr(data-label); 
        display: block; 
        font-weight: bold; 
        color: #40E0D0; 
        margin-bottom: 5px; 
    }

    /* Contact Section */
    .contact-box {
        padding: 10px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 12px;
    }

    .send-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    /* Footer */
    .footer-divider .dots {
        gap: 5px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* General Box Heading and Paragraph Styling */
    .gallery-box h2,
    .video-box h2,
    .features-box h2,
    .contact-box h2,
    .message-box h2 {
        font-size: 24px; 
    }

    .gallery-box p,
    .video-box .video-description p,
    .features-box p,
    .contact-box .contact-paragraph,
    .message-paragraph {
        font-size: 14px; 
        line-height: 1.4; 
    }

    /* Further reduce padding inside boxes */
    .gallery-box,
    .video-box,
    .features-box,
    .contact-box,
    .message-box {
        padding: 15px; 
    }

    /* Hero Section */
    .hero {
        flex-direction: column; 
        align-items: center; 
        padding: 60px; 
        margin-top: 40px !important; 
    }

    .hero-content {
        max-width: 100%; 
        text-align: center; 
        margin-bottom: 20px; 
    }

    .hero-image {
        align-self: center; 
        margin-top: 20px; 
    }

    .hero-image img {
        max-width: 85%; 
        height: auto; 

    }

    /* Video Box */
    .video-box {
        padding: 20px; 
        height: auto; 
    }

    .video-player {
        max-width: 100%; 
        height: auto; 
    }

    .video-description {
        margin-top: 10px; 
        font-size: 14px; 
    }

    /* Features Table */
    .features-table {
        display: grid; 
        grid-template-columns: 1fr; 
        gap: 10px; 
        border: none; 
    }

    .features-table thead {
        display: none; 
    }

    .features-table tbody {
        display: grid; 
        grid-template-columns: 1fr; 
    }

    .features-table tr {
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        border: 1px solid #40E0D0; 
        border-radius: 10px; 
        padding: 10px; 
        background-color: #222533; 
    }

    .features-table td {
        padding: 10px; 
        border-bottom: 1px solid #40E0D0; 
    }

    .features-table td:nth-child(odd) {
        font-weight: bold; 
        color: #40E0D0; 
    }

    .features-table td:nth-child(even) {
        color: #ffffff; 
    }

    .features-table tr:last-child td {
        border-bottom: none; 
    }
}

/* For Screens Wider Than 1358px */
@media (min-width: 1358px) {
    /* Hero Section */
    .hero-content {
        max-width: 40%; 
        text-align: left; 
    }

    .hero-content h2 {
        font-size: 64px; 
    }

    .hero-content h3 {
        font-size: 32px; 
    }

    .hero-content p {
        font-size: 20px; 
    }

    .discover-btn {
        padding: 20px 40px; 
        font-size: 20px; 
    }

    .hero-image {
        max-width: 50%; 
        margin: 0; 
    }

    .hero-image img {
        max-width: 600px; 
        max-height: 600px;
    }
}